home *** CD-ROM | disk | FTP | other *** search
/ Tripas 5 / TRIPAS 005.iso / Trespass.EXE / TRESPASS / TP_PATCH.BAT < prev    next >
Encoding:
DOS Batch File  |  1998-10-18  |  2.2 KB  |  85 lines

  1. @echo off
  2.  
  3. cls
  4.  
  5.  
  6. :getDisk1
  7. if exist trespass.exe goto runPatch
  8. echo This patch must be ran from your installed directory of Trespasser.
  9. echo Go to the root directory of your game
  10. echo and run this patch again.
  11. goto exit
  12.  
  13.  
  14. :runPatch
  15. cls
  16. echo              ╔═══════════════════════════════════════════════════╗
  17. echo              ║         Trespasser Patch  (c) HUMMERS             ║
  18. echo              ╟───────────────────────────────────────────────────╢
  19. echo              ║                                                   ║
  20. echo              ║        Press the appropriate letter to            ║
  21. echo              ║        patch according to your system:            ║
  22. echo              ║                                                   ║
  23. echo              ║       A. AMD K6                                   ║
  24. echo              ║       B. Pentium                                  ║
  25. echo              ║       C. Pentium Pro and Pentium 2                ║
  26. echo              ║                                                   ║
  27. echo              ║       Press X - Exit this program                 ║
  28. echo              ║                                                   ║
  29. echo              ║                                                   ║
  30. echo              ╚═══════════════════════════════════════════════════╝
  31.  
  32.  
  33. what c "Enter a letter > " abcx
  34.  
  35. cls
  36.  
  37. if "%what%" == "A" goto Run1
  38. if "%what%" == "B" goto Run2
  39. if "%what%" == "C" goto Run3
  40. if "%what%" == "X" goto exit
  41. if "%what%" == "" goto exit
  42.  
  43.  
  44. :Run1
  45. echo.
  46. echo Installing Trespasser AMD K6 Patch
  47. echo.
  48. if exist k6.1 goto Inst1
  49. echo Error finding file... please redownload this patch.
  50. goto exit
  51.  
  52. :Inst1
  53. copy /y k6.1 trespass.exe 
  54. goto menu
  55.  
  56. :Run2
  57. echo.
  58. echo Installing Trespasser Pentium Patch
  59. echo.
  60. if exist p.1 goto Inst2
  61. echo Error finding file... please redownload this patch.
  62. goto exit
  63.  
  64. :Inst2
  65. copy /y p.1 trespass.exe 
  66. goto menu
  67.  
  68. :Run3
  69. echo.
  70. echo Installing Trespasser Pentium Pro and Pentium 2 Patch
  71. echo.
  72. if exist pplus.1 goto Inst3
  73. echo Error finding file... please redownload this patch.
  74. goto exit
  75.  
  76. :Inst3
  77. copy /y pplus.1 trespass.exe 
  78. goto menu
  79.  
  80. :menu
  81. echo Patching successful... run trespass.exe to play the game!
  82.  
  83. :exit
  84.  
  85.